home *** CD-ROM | disk | FTP | other *** search
- { -------------------
- CURSOROFF procedure
- ------------------- }
- Procedure CursorOff;
- begin
- with regs do
- begin
- cx := $2000;
- ax := $0100;
- intr($10,regs);
- end;
- end;
-
- { -------------------
- CURSORON procedure
- ------------------- }
- Procedure CursorOn;
- begin
- with regs do
- begin
- if VideoStatus = 7 then
- cx := $0C0D
- else
- cx := $0607;
- ax := $0100;
- intr($10,regs);
- end;
- end;